UNPKG

@substrate-system/image

Version:
28 lines (26 loc) 574 B
import { defineConfig } from 'vite' import postcssNesting from 'postcss-nesting' // import postcssImport from 'postcss-import' // https://vitejs.dev/config/ export default defineConfig({ css: { postcss: { plugins: [ // postcssImport, postcssNesting ], }, }, server: { port: 8888, host: true, open: true, }, build: { target: 'esnext', minify: false, outDir: './public', emptyOutDir: true, sourcemap: 'inline' } })