Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
No EOL
350 B
Text
9 lines
No EOL
350 B
Text
// @ts-ignore: TODO: remove when webpack 5 is stable
|
|
import MiniCssExtractPlugin from 'next/dist/compiled/mini-css-extract-plugin';
|
|
export default class NextMiniCssExtractPlugin extends MiniCssExtractPlugin {
|
|
constructor(...args){
|
|
super(...args), this.__next_css_remove = true;
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=mini-css-extract-plugin.js.map |