Add import mode for direct importing in vite apps
This commit is contained in:
parent
3e234966b2
commit
010825124f
|
|
@ -7,6 +7,7 @@
|
|||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build-dev": "vite build --sourcemap inline",
|
||||
"build-import": "vite build --mode=import",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -2,27 +2,34 @@ import { defineConfig } from 'vite';
|
|||
import vue from '@vitejs/plugin-vue';
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
vue({
|
||||
template: {
|
||||
compilerOptions: {
|
||||
isCustomElement: (tag) => tag.includes('event-form') || tag.includes('event-index') || tag.includes('event-description'),
|
||||
export default defineConfig(({mode}) => {
|
||||
return {
|
||||
plugins: [
|
||||
vue({
|
||||
template: {
|
||||
compilerOptions: {
|
||||
isCustomElement: (tag) => tag.includes('event-form') || tag.includes('event-index') || tag.includes('event-description'),
|
||||
},
|
||||
},
|
||||
},
|
||||
}),
|
||||
],
|
||||
build: {
|
||||
manifest: 'manifest.json',
|
||||
rollupOptions: {
|
||||
input: 'src/main.js',
|
||||
}
|
||||
},
|
||||
define: {
|
||||
'process.env': process.env,
|
||||
},
|
||||
server: {
|
||||
port: 5174,
|
||||
host: '0.0.0.0',
|
||||
},
|
||||
}),
|
||||
],
|
||||
build: {
|
||||
manifest: 'manifest.json',
|
||||
rollupOptions: {
|
||||
input: 'src/main.js',
|
||||
output: {
|
||||
entryFileNames: mode === 'import' ? `assets/[name].js` : `assets/[name]-[hash].js`,
|
||||
chunkFileNames: mode === 'import' ? `assets/[name].js` : `assets/[name]-[hash].js`,
|
||||
assetFileNames: mode === 'import' ? `assets/[name].[ext]` : `assets/[name]-[hash].[ext]`,
|
||||
}
|
||||
}
|
||||
},
|
||||
define: {
|
||||
'process.env': process.env,
|
||||
},
|
||||
server: {
|
||||
port: 5174,
|
||||
host: '0.0.0.0',
|
||||
},
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue