mirror of
https://github.com/unjs/unplugin.git
synced 2025-12-08 20:26:33 +00:00
14 lines
218 B
TypeScript
14 lines
218 B
TypeScript
import { resolve } from 'path'
|
|
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
define: {
|
|
__DEV__: 'true',
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
unplugin: resolve('src/index.ts'),
|
|
},
|
|
},
|
|
})
|