You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deno has syntax hints and quick fixes in these files. After the fix, the syntax wavy line is gone, and the version number is automatically added
import { Application, Router } from "https://deno.land/x/oak/mod.ts";
import { Application, Router } from "https://deno.land/x/[email protected]/mod.ts";
But the packages imported in the vite.config.mjs file don't have the functionality of this quick-fix version
import { defineConfig } from "npm:vite"
import vue from "npm:@vitejs/plugin-vue"
import "npm:vue"
import "npm:vue-router"
export default defineConfig({
plugins: [vue()],
})
The text was updated successfully, but these errors were encountered:
dsherret
changed the title
deno no quickfix for packages imported without vite.config.mjs file?
deno no quickfix for npm packages imported without vite.config.mjs file?
Jan 26, 2023
deno has syntax hints and quick fixes in these files. After the fix, the syntax wavy line is gone, and the version number is automatically added
But the packages imported in the vite.config.mjs file don't have the functionality of this quick-fix version
The text was updated successfully, but these errors were encountered: