Initial commit: New MoreminiMore website with fresh design
This commit is contained in:
18
node_modules/astro/dist/container/vite-plugin-container.js
generated
vendored
Normal file
18
node_modules/astro/dist/container/vite-plugin-container.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
const VIRTUAL_MODULE_ID = "astro:container";
|
||||
function astroContainer() {
|
||||
return {
|
||||
name: VIRTUAL_MODULE_ID,
|
||||
enforce: "pre",
|
||||
resolveId: {
|
||||
filter: {
|
||||
id: new RegExp(`^(${VIRTUAL_MODULE_ID})$`)
|
||||
},
|
||||
handler() {
|
||||
return this.resolve("astro/virtual-modules/container.js");
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
export {
|
||||
astroContainer as default
|
||||
};
|
||||
Reference in New Issue
Block a user