Простая CSS библиотека элементов для личных проектов
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
383 B

2 years ago
import { defineConfig } from "vite";
export default defineConfig ({
base: './',
build: {
outDir: "public",
rollupOptions: {
output: {
manualChunks: false,
inlineDynamicImports: true,
entryFileNames: 'zx.style.js',
assetFileNames: 'zx.style.[ext]',
},
}
},
})