# Predefined list for excluding CSS files or inline CSS codes #
# Comment can use `# `(there is a space following), or `##`, can use both as a new line or end of one line
# If you want to predefine new items, please send a Pull Request to https://github.com/litespeedtech/lscache_wp/blob/dev/data/css_excludes.txt We will merge into next plugin release

# CSS file URL excludes



# Inline CSS excludes

########## Flatsome theme random string excludes ############
#row-
#col-
#cats-
#stack-
#timer-
#gap-
#portfolio-
#image_
#banner-
#map-
#text-
#page-header-
#section_

.tdi_ # Theme: Newspaper by tagDiv.com 2020

######### WoodMart - Responsive WooCommerce WordPress Theme ########
.tabs-wd-
#wd-// Load the default @wordpress/scripts config object
const defaultConfig = require('@wordpress/scripts/config/webpack.config');
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');

module.exports = {
	// Spread the default WordPress Webpack config and extend it
	...defaultConfig,

	// Define your custom entry point
	entry: './src/index.js',

	// Customize the output
	output: {
		...defaultConfig.output,
		filename: 'main.js', // Output the JS file
		path: path.resolve(__dirname, 'build'),
		publicPath: '/', // Set for dev server
	},

	// Add or extend module rules
	module: {
		...defaultConfig.module,
		rules: [
			// Ensure CSS is processed correctly
			{
				test: /\.css$/,
				use: [
					MiniCssExtractPlugin.loader, // Extract CSS into separate file
					'css-loader', // Process CSS files
					'postcss-loader', // Use PostCSS (e.g., for Tailwind or Autoprefixer)
				],
			},
			{
				test: /\.(js|jsx)$/, // Transpile JS and JSX files
				exclude: /node_modules/,
				use: {
					loader: 'babel-loader', // Use Babel for JS/JSX transpilation
					options: {
						presets: ['@babel/preset-env', '@babel/preset-react']
					}
				},
			},
		],
	},

	// Path alias configuration for cleaner imports
	resolve: {
		...defaultConfig.resolve,
		extensions: ['.js', '.jsx', '.json'],
		alias: {
			...defaultConfig.resolve.alias,
			'@components': path.resolve(__dirname, 'src/Components/'), // Custom alias for components
			'@screens': path.resolve(__dirname, 'src/Screens/'), // Custom alias for screens
			'@routes': path.resolve(__dirname, 'src/Routes/'), // Custom alias for utilities
			'@context': path.resolve(__dirname, 'src/Context/')
		},
	},

	// Add plugins like MiniCssExtractPlugin for extracting CSS into separate files
	plugins: [
		...defaultConfig.plugins,
		new MiniCssExtractPlugin({
			filename: '[name].css', // Output CSS file
		})
	],

	// Add devtool for easier debugging in development mode
	devtool:
		process.env.NODE_ENV === 'production' ? false : 'eval-source-map',

	// Add optimization for production mode
	optimization: {
		minimize: process.env.NODE_ENV === 'production', // Minimize JS in production mode
		minimizer: process.env.NODE_ENV === 'production' ? [
			...defaultConfig.optimization.minimizer,
		] : [],
		splitChunks: {
			cacheGroups: {
				default: false,
				vendors: false,
			},
		},
	},
};

/* Pie chart
---------------------------------------------------------- */<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//purnama-4d.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://purnama-4d.com/post-sitemap.xml</loc>
		<lastmod>2026-03-08T13:15:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://purnama-4d.com/page-sitemap.xml</loc>
		<lastmod>2026-01-18T19:55:25+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://purnama-4d.com/category-sitemap.xml</loc>
		<lastmod>2026-03-08T13:15:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://purnama-4d.com/author-sitemap.xml</loc>
		<lastmod>2026-01-20T14:30:07+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->