We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9609773 commit 1198be0Copy full SHA for 1198be0
web/astro.config.mjs
@@ -101,21 +101,4 @@ export default defineConfig({
101
],
102
}),
103
104
-
105
- vite: {
106
- plugins: [
107
- {
108
- name: 'override-pagefind-config',
109
- closeBundle: async () => {
110
- const configPath = path.join('dist', 'pagefind', 'pagefind.json');
111
112
- if (fs.existsSync(configPath)) {
113
- let config = JSON.parse(fs.readFileSync(configPath, 'utf-8'));
114
- config.source = 'pages';
115
- fs.writeFileSync(configPath, JSON.stringify(config));
116
- }
117
- },
118
119
- ],
120
121
});
0 commit comments