RC6/RC10 cannot build project after some updates
See original GitHub issueEnvironment
Before update:
- Operating System:
Darwin
- Node Version:
v16.15.1
- Nuxt Version:
3.0.0-rc.6
- Nitro Version:
0.4.24
- Package Manager:
yarn@1.22.18
- Builder:
vite
- User Config:
ssr
,css
,buildModules
,runtimeConfig
,build
,components
,meta
,vite
- Runtime Modules:
-
- Build Modules:
@pinia/nuxt@0.3.1
,@vueuse/nuxt@7.7.1
After update:
- Operating System:
Darwin
- Node Version:
v16.15.1
- Nuxt Version:
3.0.0-rc.10
- Nitro Version:
0.5.3
- Package Manager:
yarn@1.22.18
- Builder:
vite
- User Config:
ssr
,css
,buildModules
,runtimeConfig
,build
,components
,meta
,vite
- Runtime Modules:
-
- Build Modules:
@pinia/nuxt@0.3.1
,@vueuse/nuxt@7.7.1
Reproduction
package.json:
{
"name": "angv_tool",
"version": "1.7.0",
"private": true,
"engines": {
"node": "16.15",
"npm": "8.9"
},
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"deploy": "bash scripts/deploy_patch.sh",
"deploy:patch": "bash scripts/deploy_patch.sh",
"deploy:minor": "bash scripts/deploy_minor.sh",
"deploy:major": "bash scripts/deploy_major.sh",
"lint": "eslint . --ext .ts,.js,.vue"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.14.0",
"eslint-plugin-vue": "^8.7.1",
"nuxt": "3.0.0-rc.6",
"postcss": "^8.4.6",
"prettier": "2.6.2",
"sass": "^1.49.7",
"sass-loader": "^12.6.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"vite-plugin-eslint": "^1.6.0"
},
"dependencies": {
"@intlify/nuxt3": "^0.1.10",
"@nuxtjs/axios": "^5.13.6",
"@pinia/nuxt": "^0.3.1",
"@tiptap/extension-bullet-list": "^2.0.0-beta.26",
"@tiptap/extension-color": "^2.0.0-beta.9",
"@tiptap/extension-image": "^2.0.0-beta.27",
"@tiptap/extension-link": "^2.0.0-beta.36",
"@tiptap/extension-list-item": "^2.0.0-beta.20",
"@tiptap/extension-table": "^2.0.0-beta.48",
"@tiptap/extension-table-cell": "^2.0.0-beta.20",
"@tiptap/extension-table-header": "^2.0.0-beta.22",
"@tiptap/extension-table-row": "^2.0.0-beta.19",
"@tiptap/extension-text-style": "^2.0.0-beta.23",
"@tiptap/extension-underline": "^2.0.0-beta.23",
"@tiptap/starter-kit": "^2.0.0-beta.183",
"@tiptap/vue-3": "^2.0.0-beta.90",
"@vueuse/nuxt": "^7.6.2",
"click-outside-vue3": "^4.0.1",
"colorthief": "^2.3.2",
"js-cookie": "^3.0.1",
"pinia": "^2.0.17",
"socket.io-client": "^4.5.1",
"vue-i18n": "^9.2.2",
"vue-picture-cropper": "^0.5.1",
"vue3-circle-progress": "^1.0.7",
"vue3-popper": "^1.5.0"
}
}
nuxt.config.ts:
import { defineNuxtConfig } from 'nuxt'
import eslintPlugin from 'vite-plugin-eslint'
import runtimeConfig from './config/runtimeConfig'
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
export default defineNuxtConfig({
ssr: false,
css: ['~/assets/css/tailwind.css'],
buildModules: ['@pinia/nuxt', '@vueuse/nuxt'],
runtimeConfig,
build: {
postcss: {
postcssOptions: {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
}
}
},
components: [
{ path: '~/components', extensions: ['vue'] },
{ path: '~/components/common/', pathPrefix: false }
],
meta: {
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
vite: {
plugins: [eslintPlugin()]
}
})
Describe the bug
I was using RC6, then I removed node modules and did clean install of modules. Something have changed, because logs from dev
and build
looks different. Dev worked fine. I started to code, then next day after build it comes out that builded version doesnt work showing:
On Vercel:
Uncaught SyntaxError: Unexpected token '<' (at entry.163cef2a.js:1:1)
On yarn start
:
localhost/:5 GET http://localhost:3000/_nuxt/entry.9bebd5ed.css net::ERR_ABORTED 404 (Cannot find static asset /_nuxt/entry.9bebd5ed.css)
localhost/:9 GET http://localhost:3000/_nuxt/entry.0c97c0a8.js net::ERR_ABORTED 404 (Cannot find static asset /_nuxt/entry.0c97c0a8.js)
I tried to update to RC10, but now nothing is working, when I start dev
I see error:
Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec.
build
fails with error message:
ERROR [vite:load-fallback] Could not load /Users/filiptobiasz/Documents/Projekty/angvalion-tool/.nuxt/components (imported by components/A/Button.vue?vue&type=script&setup=true&lang.ts): ENOENT: no such file or directory, open '/Users/filiptobiasz/Documents/Projekty/angvalion-tool/.nuxt/components'
ERROR Could not load /Users/filiptobiasz/Documents/Projekty/angvalion-tool/.nuxt/components (imported by components/A/Button.vue?vue&type=script&setup=true&lang.ts): ENOENT: no such file or directory, open '/Users/filiptobiasz/Documents/Projekty/angvalion-tool/.nuxt/components'
error Command failed with exit code 1.
I am unable to push new changes to my app, right now. What should I do?
Additional context
No response
Logs
No response
Issue Analytics
- State:
- Created a year ago
- Comments:15 (9 by maintainers)
Top Results From Across the Web
Visual Studio - Cannot build a simple project more than once
If I close Visual Studio and reopen it, I can compile it again but only once. I have my projects hosted on a...
Read more >Error message when you build a Visual Studio 2010 setup ...
ERROR: Unable to update the dependencies of the project. The dependencies for the object 'assembly_name' cannot be determined." Note You do not encounter...
Read more >Content update builds | Addressables | 1.20.5
If you change your group settings before a content update, Addressables cannot generate the correct changes needed for the update build.
Read more >Change a build project's settings (AWS CLI)
json file contains an array of projects, so it cannot be used directly to update a project. You can, however, copy the properties...
Read more >Can no longer open VS 2019 project after updating VS 2022
That was just the bot not seeing a response in two weeks. Can you try updating to the 17.1.0 version of VS or...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I did everything one more time - without removing
@nuxtjs/eslint-config-typescript
. It works 😄 Thank You!Did you? Is hard to do something else from my side. The repro doesn’t have all of the conflicting files you mentioned. Please analize the last repro I shared and/or provide a better one.