bpms_site/.svn/pristine/ea/eaba9a6a3650837e540cf14d847f356c9dc0164a.svn-base
2025-11-02 16:38:49 +03:30

12 lines
420 B
Plaintext

/**
* For server-side CSS imports, we need to ignore the actual module content but
* still trigger the hot-reloading diff mechanism. So here we put the content
* inside a comment.
*/
import type webpack from 'webpack';
type NextServerCSSLoaderOptions = {
cssModules: boolean;
};
declare const NextServerCSSLoader: webpack.LoaderDefinitionFunction<NextServerCSSLoaderOptions>;
export default NextServerCSSLoader;