Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
15
node_modules/astro/dist/container/vite-plugin-container.js
generated
vendored
Normal file
15
node_modules/astro/dist/container/vite-plugin-container.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
const virtualModuleId = "astro:container";
|
||||
function astroContainer() {
|
||||
return {
|
||||
name: "astro:container",
|
||||
enforce: "pre",
|
||||
resolveId(id) {
|
||||
if (id === virtualModuleId) {
|
||||
return this.resolve("astro/virtual-modules/container.js");
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
export {
|
||||
astroContainer as default
|
||||
};
|
Reference in New Issue
Block a user