feat: create new sass template

This commit is contained in:
Arnau Gómez
2022-01-09 14:21:21 +01:00
parent 31fe5149cf
commit 62fb3be1aa
11 changed files with 982 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite';
import solidPlugin from 'vite-plugin-solid';
export default defineConfig({
plugins: [solidPlugin()],
build: {
target: 'esnext',
polyfillDynamicImport: false,
},
});