-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup failed to resolve image absolute path on build #70
Comments
I think I've seen this before. Can you try this? frandiox/vite-ssr#85 (reply in thread) |
I'm getting this error, and when I suppress using
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vitedgePlugin from "vitedge/plugin.js";
import viteSSR from "vite-ssr/plugin.js";
export default defineConfig({
plugins: [
vitedgePlugin(),
viteSSR({
build: {
serverOptions: {
publicDir: true
}
}
}),
vue()
],
}) |
@techieoriname ah just noticed an error in the post. Try |
🤔 Still experiencing same error |
no head way yet on this 🥺 |
Currently when I run build I run into a rollup import error.
This works when running
dev
, but not when running build, but when I switch to relative path,build
runs perfectly.And
vite
warning is on when using relative path fordev
.The text was updated successfully, but these errors were encountered: