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.
19 lines
443 B
19 lines
443 B
import {
|
|
src_default
|
|
} from "./chunk-G5M4GEJP.mjs";
|
|
|
|
// src/nuxt.ts
|
|
function nuxt_default(options) {
|
|
this.extendBuild((config) => {
|
|
config.plugins = config.plugins || [];
|
|
config.plugins.unshift(src_default.webpack(options));
|
|
});
|
|
this.nuxt.hook("vite:extend", (vite) => {
|
|
vite.config.plugins = vite.config.plugins || [];
|
|
vite.config.plugins.push(src_default.vite(options));
|
|
});
|
|
}
|
|
export {
|
|
nuxt_default as default
|
|
};
|