We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7958c6b commit 93e8bd2Copy full SHA for 93e8bd2
packages/astro/src/actions/vite-plugin-actions.ts
@@ -63,7 +63,7 @@ export function vitePluginActions({
63
enforce: 'pre',
64
async resolveId(id) {
65
if (id === VIRTUAL_MODULE_ID) {
66
- return RESOLVED_VIRTUAL_MODULE_ID
+ return RESOLVED_VIRTUAL_MODULE_ID;
67
}
68
69
if (id === RUNTIME_VIRTUAL_MODULE_ID) {
@@ -101,7 +101,7 @@ export function vitePluginActions({
101
},
102
async load(id, opts) {
103
if (id === RESOLVED_VIRTUAL_MODULE_ID) {
104
- return { code: `export * from 'astro/actions/runtime/virtual.js';` }
+ return { code: `export * from 'astro/actions/runtime/virtual.js';` };
105
106
107
if (id === RESOLVED_NOOP_ENTRYPOINT_VIRTUAL_MODULE_ID) {
0 commit comments