feat: install and scaffold Tablar theme

This commit is contained in:
2026-05-01 11:49:20 -04:00
parent 9108b6bab6
commit bd52e27f76
170 changed files with 1046 additions and 375 deletions
+36
View File
@@ -0,0 +1,36 @@
import {defineConfig} from 'vite';
import laravel from 'laravel-vite-plugin';
import {viteStaticCopy} from 'vite-plugin-static-copy'
export default defineConfig({
plugins: [
laravel({
input: ['resources/js/app.js'],
refresh: true,
}),
viteStaticCopy({
targets: [
{
src: 'node_modules/@tabler/core/dist/img',
dest: '../dist'
},
{
src: 'node_modules/@tabler/icons-webfont/dist/fonts',
dest: '../build/assets'
}
]
})
],
server: {
hmr: {
host: 'localhost',
protocol: 'ws',
port: 3000
}
},
build: {
commonjsOptions: {
transformMixedEsModules: true
}
}
});