Skip to content

Commit 1795553

Browse files
committed
Update example in readme
1 parent 85f96ce commit 1795553

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,14 @@ export default defineConfig({
4444
SFCFluentPlugin({ // define messages in SFCs
4545
blockType: 'fluent', // default 'fluent' - name of the block in SFCs
4646
checkSyntax: true, // default true - whether to check syntax of the messages
47+
parseFtl: false, // default false - whether to parse ftl files during build
4748
}),
4849
ExternalFluentPlugin({ // define messages in external ftl files
4950
baseDir: path.resolve('src'), // required - base directory for Vue files
5051
ftlDir: path.resolve('src/locales'), // required - directory with ftl files
5152
locales: ['en', 'da'], // required - list of locales
5253
checkSyntax: true, // default true - whether to check syntax of the messages
54+
parseFtl: false, // default false - whether to parse ftl files during build
5355
}),
5456
],
5557
})

0 commit comments

Comments
 (0)