Bootstrap Error | Invalid or Unexpected Token

Maybe someone knows what this is. I’ve tried updating Bootstrap, but I keep getting this error trying to start my app.

C:\AutoSpecsPro\app\node_modules\bootstrap\dist\css\bootstrap.min.css:1
W20250404-09:38:50.959(-5)? (STDERR) @charset"UTF-8";/*!
W20250404-09:38:50.960(-5)? (STDERR) ^
W20250404-09:38:50.960(-5)? (STDERR)
W20250404-09:38:50.961(-5)? (STDERR) SyntaxError: Invalid or unexpected token
W20250404-09:38:50.961(-5)? (STDERR)     at wrapSafe (node:internal/modules/cjs/loader:1512:18)
W20250404-09:38:50.961(-5)? (STDERR)     at Module.<anonymous> (node:internal/modules/cjs/loader:1534:20)
W20250404-09:38:50.962(-5)? (STDERR)     at Module.Mp._compile (C:\tools\static-assets\server\runtime.js:78:21)
W20250404-09:38:50.962(-5)? (STDERR)     at Object.Module._extensions..js (C:\tools\static-assets\server\runtime.js:112:21)
W20250404-09:38:50.962(-5)? (STDERR)     at Module.<anonymous> (node:internal/modules/cjs/loader:1313:32)
W20250404-09:38:50.963(-5)? (STDERR)     at Module.Mp.load (C:\tools\static-assets\server\runtime.js:35:31)
W20250404-09:38:50.963(-5)? (STDERR)     at Function._load (node:internal/modules/cjs/loader:1123:12)
W20250404-09:38:50.963(-5)? (STDERR)     at TracingChannel.traceSync (node:diagnostics_channel:322:14)
W20250404-09:38:50.964(-5)? (STDERR)     at wrapModuleLoad (node:internal/modules/cjs/loader:217:24)
W20250404-09:38:50.964(-5)? (STDERR)     at Module.<anonymous> (node:internal/modules/cjs/loader:1335:12)
W20250404-09:38:50.964(-5)? (STDERR)     at Module.mod.require (C:\Users\Dusty\AppData\Local\.meteor\packages\meteor-tool\3.1.2\mt-os.windows.x86_64\dev_bundle\server-lib\node_modules\@meteorjs\reify\lib\runtime\index.js:30:33)
W20250404-09:38:50.964(-5)? (STDERR)     at require (node:internal/modules/helpers:136:16)
W20250404-09:38:50.965(-5)? (STDERR)     at npmRequire (C:\tools\static-assets\server\npm-require.js:133:10)
W20250404-09:38:50.965(-5)? (STDERR)     at Module.useNode (packages\modules-runtime.js:750:18)
W20250404-09:38:50.965(-5)? (STDERR)     at module (packages\modules.js:19659:8)
W20250404-09:38:50.965(-5)? (STDERR)     at fileEvaluate (packages\modules-runtime.js:335:7)
W20250404-09:38:50.966(-5)? (STDERR)
W20250404-09:38:50.966(-5)? (STDERR) Node.js v22.13.1
=> Exited with code: 1

I believe the file contains scss and not css. You would need to add something like leonardoventurini:scss to you Meteor packages and import bootstrap.min.css to your top most js file such as app/client/main.js

That didn’t work for me. Any suggestions on what I should try next?

Ok, copy the file to a location such as /app/imports/ui/styles/scss/boostrap
Import it to your main.js from there. This should ensure the scss processor (leonardoventurini:scss) will see it and process it.