Next.js Discord

Discord Forum

How to add support for raw-loader in turbo?

Unanswered
Najmus Sakib posted this in #help-forum
Open in Discord
I have installed raw-loader and it just working fine with webpack(both dev and build). But when I add --turbo flag to dev command, it cannot load the raw-loader.

Installed the package as devDependency.
Added ts declaration
declare module '!!raw-loader!*' {
  const contents: string;
  export = contents;
}


then import as import styles from '!!raw-loader!~/styles/builder.css';

It works in webpack but not in turbo

2 Replies